/*
    MotoFocuz - Product Page Stylesheet
    Contains styles for product detail pages including:
    - Header with search and navigation
    - Product image and information display
    - Product features list
    - Book appointment button
    - Footer
    Author: Ameer
*/

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Screen Reader Only - Hide visually but keep accessible to screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

html {
    font-size: 16px;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
}
  
body {
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

/* ============================================
   HEADER STYLES
   ============================================ */

.main-header{
    background-color: #000;
    padding: 0px 40px;
    position: relative;
    overflow: visible;
    z-index: 1000;
    border-bottom: 2px solid #fee900;
}

/* ============================================
   SEARCH BAR
   Positioned in top center of header
   ============================================ */

.search-container{
    position: absolute;
    top: 15px;
    left: 52%;
    transform: translateX(-50%);
    z-index: 10;
    transition: all 0.3s ease;
}

/* Search Toggle Button (Mobile/Tablet) */
.search-toggle-btn {
    display: none;
    position: absolute;
    top: 15px;
    left: 52%;
    transform: translateX(-50%);
    background-color: #fee900;
    border: 2px solid #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 11;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
}

.search-toggle-btn:hover {
    background-color: #ffed33;
    transform: translateX(-50%) scale(1.1);
}

.search-toggle-btn i {
    color: #000;
}

/* Login/Signup Buttons - Positioned in top right */
.auth-buttons{
    position: absolute;
    top: 15px;
    right: 40px;
    z-index: 10;
}

.button-bg{
    background-color: #fee900;
    color: #000;
    display: flex;
    font-family: 'Changa One';
    font-style: italic;
    font-size: 16px;
    border-radius: 7px;
    border: 2px solid #000;
    height: 30px;
}

.login-bg{
    background-color: #000;
    color: #fee900;
    clip-path: polygon(100% 0, 0 0, 0 100%, 70% 100%);
    padding-left: 15px;
    padding-right: 25px;
    position: relative;
    z-index: 1;
    border: 2px solid #fee900;
    border-right: none;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.login-bg a{
    text-decoration: none;
    color: #fee900;
    display: inline-block;
}

.signup-bg{
    padding-right: 15px;
    /* padding-left: 15px; */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.signup-bg a{
    text-decoration: none;
    color: #000;
    display: inline-block;
}

.login-bg:hover,
.signup-bg:hover{
    transform: scale(1.09);
}

.search-form{
    display: flex;
    align-items: center;
}

.search-button{
    background-color: #fee900;
    border: 2px solid #000;
    border-radius: 25px 0 0 25px;
    border-right: none;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    height: 40px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    margin-right: 0;
    z-index: 1;
}

.search-button i{
    color: #000;
    font-size: 16px;
}

.search-button:hover{
    background-color: #ffed33;
}

.search-input{
    width: 340px;
    padding: 10px 20px;
    border: 2px solid #000;
    border-left: none;
    border-radius: 0 25px 25px 0;
    background-color: #fff;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    height: 40px;
    position: relative;
    clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -15px;
    z-index: 0;
}

.search-close-btn {
    display: none;
    background-color: transparent;
    border: none;
    color: #fee900;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    margin-left: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-close-btn:hover {
    color: #fff;
    transform: rotate(90deg);
}

.search-input::placeholder{
    color: #999;
}

.header-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* max-width: 1400px; */
    /* margin: 0 auto; */
}

.logo-container{
    flex: 0 0 auto;
}

.logo{
    width: 200px;
    height: 120px;
    object-fit: contain;
}

.nav{
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
    padding-top: 50px;
}

.nav-link{
    font-family: 'Changa One';
    font-style: italic;
    color: #fee900;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover{
    opacity: 0.8;
    text-decoration: underline;
    text-decoration-color: #fff;
    text-underline-offset: 5px;
}


.nav-link-wrapper{
    position: relative;
    display: inline-block;
}

.dropdown-menu{
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    width: max-content;
    min-width: fit-content;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 200px);
    padding: 20px 30px;
    display: flex !important;
    flex-direction: row;
    gap: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 99999;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4),
                0 4px 8px rgba(0, 0, 0, 0.2);
    will-change: opacity, transform;
    box-sizing: border-box;
    border-radius: 8px;
    margin-top: 5px;
    overflow-y: auto;
    overflow-x: hidden;
}

.dropdown-menu-exterior {
    flex-direction: column;
    gap: 30px;
}
.no-active-links{
    color:#333 !important;
    pointer-events: none !important;
    cursor: default !important;
}

.dropdown-list a.no-active-links {
    color: #333 !important;
    pointer-events: none !important;
    cursor: default !important;
}

.dropdown-list a.no-active-links:hover {
    color: #333 !important;
    pointer-events: none !important;
    cursor: default !important;
}

.mobile-dropdown-link.no-active-links {
    color: #333 !important;
    pointer-events: none !important;
    cursor: default !important;
}

.mobile-dropdown-link.no-active-links:hover {
    color: #333 !important;
    padding-left: 20px !important;
    pointer-events: none !important;
    cursor: default !important;
}
.dropdown-row {
    display: flex;
    flex-direction: row;
    gap: 60px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Below 1400px: Make GLAZE'S wrap to second row */
@media (max-width: 1399px) {
    .dropdown-menu-exterior .dropdown-row {
        flex-wrap: wrap;
    }
    
    .dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(1),
    .dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(2) {
        flex: 0 0 calc(50% - 30px);
    }
    
    .dropdown-menu-exterior .dropdown-row .dropdown-column:nth-child(3) {
        flex: 0 0 100%;
        margin-top: 0;
    }
}

/* At 1400px and above, make all three columns appear in one row */
@media (min-width: 1400px) {
    .dropdown-menu-exterior {
        flex-direction: row;
        gap: 60px;
    }
    
    .dropdown-menu-exterior .dropdown-row {
        flex-wrap: nowrap;
        width: 100%;
        gap: 60px;
    }
    
    .dropdown-menu-exterior .dropdown-row .dropdown-column {
        flex: 0 0 auto;
    }
}

/* Custom Scrollbar for Dropdown Menu */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #000;
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #fee900;
    border-radius: 3px;
    border: none;
    transition: background 0.3s ease;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #ffeb3b;
}

.dropdown-menu {
    scrollbar-width: thin;
    scrollbar-color: #fee900 #000;
}

.nav-link-wrapper:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
    display: flex !important;
}

.dropdown-column{
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    width: max-content;
    max-width: calc((100vw - 140px) / 2);
    box-sizing: border-box;
}


.dropdown-heading{
    font-family: 'Changa One';
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
    color: #fee900;
    text-transform: uppercase;
    margin-bottom: 15px;
    /* font-weight: bold; */
    opacity: 0;
    transform: translateY(-25px);
    transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), 
                transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: opacity, transform;
}

.dropdown-column:nth-child(1) .dropdown-heading {
    transition-delay: 0.05s;
}

.dropdown-column:nth-child(2) .dropdown-heading {
    transition-delay: 0.15s;
}

.dropdown-column:nth-child(3) .dropdown-heading {
    transition-delay: 0.25s;
}

.dropdown-column:nth-child(4) .dropdown-heading {
    transition-delay: 0.35s;
}

.dropdown-column:nth-child(5) .dropdown-heading {
    transition-delay: 0.45s;
}

/* Exterior dropdown specific - GLAZE'S in second row */
.dropdown-menu-exterior .dropdown-row:nth-child(1) .dropdown-column:nth-child(1) .dropdown-heading {
    transition-delay: 0.05s;
}

.dropdown-menu-exterior .dropdown-row:nth-child(1) .dropdown-column:nth-child(2) .dropdown-heading {
    transition-delay: 0.15s;
}

.dropdown-menu-exterior .dropdown-row:nth-child(2) .dropdown-column .dropdown-heading {
    transition-delay: 0.25s;
}

.nav-link-wrapper:hover .dropdown-menu .dropdown-heading,
.dropdown-menu:hover .dropdown-heading {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Reset on close - no delay for smooth reverse */
.dropdown-menu:not(:hover) .dropdown-heading {
    transition-delay: 0s;
}

.dropdown-list{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    min-width: max-content;
    padding: 0;
    margin: 0;
    pointer-events: auto;
}

/* Universal Dropdown List Items - Brick-by-Brick Animation */
.dropdown-list li {
    margin: 0;
    opacity: 0;
    transform: translateY(-25px);
    transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: opacity, transform;
}

/* Universal animation delays - works for all columns and items */
/* Column 1 items */
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(1) { transition-delay: 0.1s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(2) { transition-delay: 0.15s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(3) { transition-delay: 0.2s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(4) { transition-delay: 0.25s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(5) { transition-delay: 0.3s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(6) { transition-delay: 0.35s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(7) { transition-delay: 0.4s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(8) { transition-delay: 0.45s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(9) { transition-delay: 0.5s; }
.dropdown-column:nth-child(1) .dropdown-list li:nth-child(10) { transition-delay: 0.55s; }

/* Column 2 items */
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(1) { transition-delay: 0.2s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(2) { transition-delay: 0.25s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(3) { transition-delay: 0.3s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(4) { transition-delay: 0.35s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(5) { transition-delay: 0.4s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(6) { transition-delay: 0.45s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(7) { transition-delay: 0.5s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(8) { transition-delay: 0.55s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(9) { transition-delay: 0.6s; }
.dropdown-column:nth-child(2) .dropdown-list li:nth-child(10) { transition-delay: 0.65s; }

/* Column 3 items */
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(1) { transition-delay: 0.3s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(2) { transition-delay: 0.35s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(3) { transition-delay: 0.4s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(4) { transition-delay: 0.45s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(5) { transition-delay: 0.5s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(6) { transition-delay: 0.55s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(7) { transition-delay: 0.6s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(8) { transition-delay: 0.65s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(9) { transition-delay: 0.7s; }
.dropdown-column:nth-child(3) .dropdown-list li:nth-child(10) { transition-delay: 0.75s; }

/* Exterior dropdown specific - GLAZE'S items in second row */
.dropdown-menu-exterior .dropdown-row:nth-child(2) .dropdown-column .dropdown-list li:nth-child(1) { transition-delay: 0.3s; }
.dropdown-menu-exterior .dropdown-row:nth-child(2) .dropdown-column .dropdown-list li:nth-child(2) { transition-delay: 0.35s; }
.dropdown-menu-exterior .dropdown-row:nth-child(2) .dropdown-column .dropdown-list li:nth-child(3) { transition-delay: 0.4s; }
.dropdown-menu-exterior .dropdown-row:nth-child(2) .dropdown-column .dropdown-list li:nth-child(4) { transition-delay: 0.45s; }
.dropdown-menu-exterior .dropdown-row:nth-child(2) .dropdown-column .dropdown-list li:nth-child(5) { transition-delay: 0.5s; }
.dropdown-menu-exterior .dropdown-row:nth-child(2) .dropdown-column .dropdown-list li:nth-child(6) { transition-delay: 0.55s; }
.dropdown-menu-exterior .dropdown-row:nth-child(2) .dropdown-column .dropdown-list li:nth-child(7) { transition-delay: 0.6s; }
.dropdown-menu-exterior .dropdown-row:nth-child(2) .dropdown-column .dropdown-list li:nth-child(8) { transition-delay: 0.65s; }

/* Activate animation on hover */
.nav-link-wrapper:hover .dropdown-menu .dropdown-list li,
.dropdown-menu:hover .dropdown-list li {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Reset animation on close - smooth reverse */
.dropdown-menu:not(:hover) .dropdown-list li {
    transition-delay: 0s;
}

.dropdown-list a{
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    transition: color 0.2s ease;
    white-space: nowrap;
    width: 100%;
    pointer-events: auto;
    cursor: pointer;
}

.dropdown-list a:hover{
    color: #fee900;
}

/* No Active Links - Must be after general dropdown styles - Matching Tharun/index.css list-out style */
/* Only apply to links that explicitly have the no-active-links class */
.dropdown-list li a.no-active-links,
.dropdown-list a.no-active-links {
    color: #777777 !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
    text-decoration: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

/* Ensure links WITHOUT no-active-links class remain white and clickable */
.dropdown-list a:not(.no-active-links) {
    color: #fff !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.dropdown-list a:not(.no-active-links):hover {
    color: #fee900 !important;
}

.dropdown-list li a.no-active-links:hover,
.dropdown-list li a.no-active-links:active,
.dropdown-list li a.no-active-links:focus,
.dropdown-list a.no-active-links:hover,
.dropdown-list a.no-active-links:active,
.dropdown-list a.no-active-links:focus {
    color: #777777 !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
    text-decoration: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

/* Social Icons */
.header-container .social-icons{
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
    flex-shrink: 0;
    min-width: 0;
    padding-top: 50px;
}

.header-container .social-icons .social-icon{
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.header-container .social-icons .social-icon:hover{
    color: #fee900;
    transform: scale(1.1);
}

/* ===== Hamburger Menu Styles ===== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    margin-left: 15px;
    flex-shrink: 0;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #fee900;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

/* Custom Scrollbar for Mobile Menu Overlay */
.mobile-menu-overlay::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu-overlay::-webkit-scrollbar-track {
    background: #000;
    border-radius: 3px;
}

.mobile-menu-overlay::-webkit-scrollbar-thumb {
    background: #fee900;
    border-radius: 3px;
    border: none;
    transition: background 0.3s ease;
}

.mobile-menu-overlay::-webkit-scrollbar-thumb:hover {
    background: #ffeb3b;
}

.mobile-menu-overlay {
    scrollbar-width: thin;
    scrollbar-color: #fee900 #000;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: #fee900;
    font-size: 32px;
    cursor: pointer;
    padding: 10px;
    z-index: 10001;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.mobile-menu-close:hover {
    color: #fff;
    transform: rotate(90deg);
}

.mobile-menu-close i {
    font-size: 32px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 120px 30px 30px;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.mobile-nav-link {
    font-family: 'Changa One';
    font-style: italic;
    color: #fee900;
    font-size: 20px;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    text-align: left;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    word-wrap: break-word;
}

.mobile-nav-link:hover {
    color: #fff;
}

.mobile-nav-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobile-nav-dropdown-toggle.active i {
    transform: rotate(180deg);
}

.mobile-nav-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #111;
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
}

.mobile-nav-dropdown-content.active {
    max-height: 2000px;
}

.mobile-dropdown-section {
    padding: 15px 0;
    border-bottom: 1px solid #222;
    width: 100%;
    box-sizing: border-box;
}

.mobile-dropdown-heading {
    font-family: 'Changa One';
    font-style: italic;
    font-size: 16px;
    color: #fee900;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 0 20px;
    word-wrap: break-word;
    box-sizing: border-box;
}

.mobile-dropdown-link {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 20px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}

.mobile-dropdown-link:hover {
    color: #fee900;
    padding-left: 30px;
}

/* No Active Links - Mobile - Matching Tharun/index.css list-out style */
/* Only apply to links that explicitly have the no-active-links class */
.mobile-dropdown-section a.mobile-dropdown-link.no-active-links,
.mobile-dropdown-link.no-active-links {
    color: #777777 !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
    text-decoration: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

/* Ensure mobile links WITHOUT no-active-links class remain white and clickable */
.mobile-dropdown-link:not(.no-active-links) {
    color: #fff !important;
    pointer-events: auto !important;
    cursor: pointer !important;
}

.mobile-dropdown-link:not(.no-active-links):hover {
    color: #fee900 !important;
}

.mobile-dropdown-section a.mobile-dropdown-link.no-active-links:hover,
.mobile-dropdown-section a.mobile-dropdown-link.no-active-links:active,
.mobile-dropdown-section a.mobile-dropdown-link.no-active-links:focus,
.mobile-dropdown-link.no-active-links:hover,
.mobile-dropdown-link.no-active-links:active,
.mobile-dropdown-link.no-active-links:focus {
    color: #777777 !important;
    padding-left: 20px !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
    text-decoration: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}

/* ============================================
   PRODUCT DETAILS SECTION
   Main content area displaying product information
   ============================================ */

.product-details{
    padding: 60px 40px;
    background-color: #f5f5f5;
    min-height: calc(100vh - 200px);
}

.product-container{
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* ============================================
   PRODUCT IMAGE SECTION
   Left side: Product image display
   ============================================ */

.product-image-section{
    flex: 1;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-image{
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.diamond_pro{
    border:1px solid #000;
}
/* ============================================
   PRODUCT INFORMATION SECTION
   Right side: Product details, features, and booking
   ============================================ */

.product-info-section{
    flex: 1;
    max-width: 50%;
    padding: 20px 0;
}

/* Breadcrumb */
.breadcrumb{
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #6f6f6f;
    margin-bottom: 20px;
}

.breadcrumb a{
    color: #6f6f6f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover{
    color: #000;
}

.breadcrumb span{
    color: #6f6f6f;
}

/* Brand Logo and Title Container */
.brand-title-container{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

/* Brand Logo */
.brand-logo{
    margin-bottom: 0;
    flex-shrink: 0;
}

.brand-logo-img{
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Product Title */
.product-title{
    font-family: 'Changa One', sans-serif;
    font-style: italic;
    font-size: 30px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 0;
    line-height: 1.2;
}

/* Product Features */
.product-features{
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.product-features li{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 30px;
    font-weight: 500;
    position: relative;
}

.product-features li::before{
    content: '•';
    position: absolute;
    left: 0;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
}

/* Book Now Button */
.book-button-container{
    margin-top: 0;
}

.product-image-section .book-button-container{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
}

.book-now-btn{
    display: inline-block;
    font-family: 'Changa One', sans-serif;
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    background-color: #fee900;
    padding: 7px 150px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    /* border: 2px solid #000; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.book-now-btn:hover{
    background-color: #ffed33;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.quick-links{
    background-color: #fff;
    padding: 60px 40px 20px;
    font-family: 'Poppins', sans-serif;
    border-top: 2px solid #000;
}

.footer-main{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.footer-links-privacy-terms{
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
}
.footer-links-privacy-terms:hover{
    color: #fee900;
}
.footer-logo{
    flex: 0 0 150px;
    transition: transform 0.3s ease;
    text-align: left;
}
.footer-logo:hover{
    transform: scale(1.05);
}
.logo-img{
    max-width: 120px;
    height: auto;
}

.footer-section{
    flex: 0 0 150px;
}

.footer-heading{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px 0;
}

.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li{
    margin-bottom: 12px;
}

.footer-links a{
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover{
    color: #fee900;
}

.footer-newsletter{
    flex: 0 0 280px;
}

.newsletter-label{
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.newsletter-form{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 4px;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.newsletter-input::placeholder{
    color: #999;
}

.newsletter-btn{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.newsletter-btn:hover{
    background-color: #333;
}

.footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 20px auto 0;
    padding-top: 20px;
}

.footer-copyright{
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #000;
}

.footer-social{
    display: flex;
    gap: 20px;
}

.footer-social .social-icon{
    color: #000;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social .social-icon:hover{
    color: #fee900;
}


/* Responsive Design */
/* Very Small Mobile Devices (up to 400px) */
@media (max-width: 400px) {
    .product-details {
        padding: 30px 15px;
    }

    .product-container {
        gap: 25px;
    }

    .product-image-section {
        width: 100%;
        max-width: 100%;
    }

    .product-info-section {
        width: 100%;
        max-width: 100%;
    }

    .product-image {
        max-width: 90%;
        width: 90%;
    }

    .product-image-section .book-button-container {
        max-width: 90%;
        width: 90%;
    }

    .product-title {
        font-size: 20px;
    }

    .brand-logo-img {
        height: 30px;
    }

    .brand-title-container {
        gap: 10px;
    }

    .breadcrumb {
        font-size: 10px;
    }

    .product-features li {
        font-size: 13px;
        padding-left: 22px;
        line-height: 1.5;
        margin-bottom: 8px;
    }

    .book-now-btn {
        font-size: 14px;
        padding: 10px 50px;
    }

    .quick-links {
        padding: 30px 15px 15px;
    }

    .footer-heading {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-copyright {
        font-size: 10px;
    }

    .dropdown-list a.no-active-links {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .dropdown-list a.no-active-links:hover {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .mobile-dropdown-link.no-active-links {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .mobile-dropdown-link.no-active-links:hover {
        color: #777777 !important;
        padding-left: 15px !important;
        pointer-events: none !important;
        cursor: default !important;
    }
}

/* Mobile Devices (up to 767px) */
@media (max-width: 767px) {
    html {
        font-size: 14px;
    }

    .main-header {
        padding: 0px 15px;
        overflow-x: hidden;
    }

    .header-container {
        gap: 10px;
    }

    .logo {
        width: 120px;
        height: 72px;
        flex-shrink: 0;
    }

    .nav {
        display: none;
        padding-top: 0;
    }

    .hamburger-menu {
        display: flex;
        margin-left: 10px;
        width: 26px;
        height: 26px;
    }

    .social-icons {
        gap: 10px;
        flex-shrink: 0;
        padding-top: 0;
    }

    .social-icon {
        font-size: 16px;
        flex-shrink: 0;
    }

    .search-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        z-index: 10002;
        background-color: #000;
        padding: 15px;
        box-sizing: border-box;
        border-bottom: 2px solid #fee900;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .search-container.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .search-container .search-form {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .search-container .search-input {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        flex: 1;
        border-radius: 25px;
        border: 2px solid #000;
        clip-path: none;
        padding-left: 20px;
    }

    .search-container .search-button {
        flex-shrink: 0;
        border-radius: 25px;
        clip-path: none;
        margin-right: 0;
    }

    .search-container .search-close-btn {
        display: flex;
    }

    .search-toggle-btn {
        display: flex;
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .auth-buttons {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 10;
    }

    .button-bg {
        font-size: 12px;
        height: 28px;
    }

    .login-bg {
        padding-left: 10px;
        padding-right: 15px;
    }

    .signup-bg {
        padding-right: 10px;
    }

    .product-details {
        padding: 40px 20px;
    }

    .product-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .product-image-section {
        flex: 1;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .product-info-section {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }

    .product-title {
        font-size: 24px;
    }

    .brand-title-container {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .brand-logo-img {
        height: 35px;
    }

    .breadcrumb {
        font-size: 11px;
    }

    .product-features li {
        font-size: 14px;
        padding-left: 25px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .book-now-btn {
        font-size: 16px;
        padding: 12px 60px;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .product-image {
        max-width: 85%;
        width: 85%;
        margin: 0 auto;
    }

    .product-image-section .book-button-container {
        max-width: 85%;
        width: 85%;
    }

    .mobile-menu-close {
        top: 15px;
        right: 15px;
        font-size: 28px;
        width: 45px;
        height: 45px;
    }

    .mobile-menu-close i {
        font-size: 28px;
    }

    .mobile-nav {
        padding: 100px 20px 20px;
    }

    .mobile-nav-link {
        font-size: 18px;
        padding: 12px 0;
    }

    .mobile-dropdown-heading {
        font-size: 14px;
        padding: 0 15px;
    }

    .mobile-dropdown-link {
        font-size: 12px;
        padding: 8px 15px;
    }

    .dropdown-list a.no-active-links {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .dropdown-list a.no-active-links:hover {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .mobile-dropdown-link.no-active-links {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .mobile-dropdown-link.no-active-links:hover {
        color: #777777 !important;
        padding-left: 15px !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .quick-links {
        padding: 40px 20px 20px;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

    .footer-section,
    .footer-newsletter {
        flex: 1;
        width: 100%;
    }

    .footer-logo {
        flex: 0 0 auto;
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
    }

    .logo-img {
        max-width: 100px;
    }

    .footer-heading {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .footer-copyright {
        font-size: 11px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .newsletter-btn {
        width: 100%;
    }
}

/* Medium Mobile / Small Tablet (700px - 767px) */
@media (min-width: 700px) and (max-width: 767px) {
    .product-container {
        gap: 35px;
    }

    .product-image {
        max-width: 80%;
        width: 80%;
    }

    .product-image-section .book-button-container {
        max-width: 80%;
        width: 80%;
    }

    .product-title {
        font-size: 26px;
    }

    .product-features li {
        font-size: 15px;
    }

    .dropdown-list a.no-active-links {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .dropdown-list a.no-active-links:hover {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .mobile-dropdown-link.no-active-links {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .mobile-dropdown-link.no-active-links:hover {
        color: #777777 !important;
        padding-left: 15px !important;
        pointer-events: none !important;
        cursor: default !important;
    }
}

/* Tablet Devices (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    html {
        font-size: 15px;
    }

    .main-header {
        padding: 0px 30px;
        overflow-x: hidden;
    }

    .header-container {
        gap: 15px;
    }

    .logo {
        width: 160px;
        height: 96px;
        flex-shrink: 0;
    }

    .nav {
        display: none;
        padding-top: 0;
    }

    .nav-link {
        font-size: 16px;
    }

    .hamburger-menu {
        display: flex;
        margin-left: 12px;
    }

    .social-icons {
        gap: 15px;
        flex-shrink: 0;
        padding-top: 0;
    }

    .social-icon {
        font-size: 18px;
        flex-shrink: 0;
    }

    .search-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        z-index: 10002;
        background-color: #000;
        padding: 15px;
        box-sizing: border-box;
        border-bottom: 2px solid #fee900;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    .search-container.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .search-container .search-form {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .search-container .search-input {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        flex: 1;
        border-radius: 25px;
        border: 2px solid #000;
        clip-path: none;
        padding-left: 20px;
    }

    .search-container .search-button {
        flex-shrink: 0;
        border-radius: 25px;
        clip-path: none;
        margin-right: 0;
    }

    .search-container .search-close-btn {
        display: flex;
    }

    .search-toggle-btn {
        display: flex;
        position: absolute;
        top: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .auth-buttons {
        position: absolute;
        top: 15px;
        right: 30px;
        z-index: 10;
    }

    .button-bg {
        font-size: 14px;
        height: 30px;
    }

    .login-bg {
        padding-left: 12px;
        padding-right: 20px;
    }

    .signup-bg {
        padding-right: 12px;
    }

    .product-container {
        flex-direction: row;
        gap: 30px;
        align-items: flex-start;
    }

    .product-image-section {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .product-info-section {
        flex: 1;
        max-width: 55%;
    }

    .product-image {
        max-width: 100%;
        width: 100%;
    }

    .product-image-section .book-button-container {
        max-width: 100%;
    }

    .product-details {
        padding: 50px 30px;
    }

    .product-title {
        font-size: 26px;
    }

    .brand-logo-img {
        height: 38px;
    }

    .product-features li {
        font-size: 15px;
    }

    .brand-title-container {
        gap: 15px;
    }

    .brand-logo-img {
        height: 40px;
    }

    .breadcrumb {
        font-size: 11px;
    }

    .product-features li {
        font-size: 15px;
    }

    .book-now-btn {
        font-size: 17px;
        padding: 12px 100px;
    }

    .quick-links {
        padding: 50px 30px 20px;
    }

    .footer-main {
        gap: 25px;
        flex-wrap: wrap;
    }

    .footer-section {
        flex: 0 0 calc(50% - 15px);
        min-width: 150px;
    }

    .footer-newsletter {
        flex: 0 0 100%;
        margin-top: 10px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-menu-close {
        top: 18px;
        right: 18px;
        font-size: 30px;
        width: 48px;
        height: 48px;
    }

    .mobile-menu-close i {
        font-size: 30px;
    }

    .mobile-nav {
        padding: 110px 25px 25px;
    }

    .mobile-nav-link {
        font-size: 19px;
        padding: 14px 0;
    }

    .mobile-dropdown-heading {
        font-size: 15px;
        padding: 0 18px;
    }

    .mobile-dropdown-link {
        font-size: 13px;
        padding: 9px 18px;
    }

    .dropdown-list a.no-active-links {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .dropdown-list a.no-active-links:hover {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .mobile-dropdown-link.no-active-links {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .mobile-dropdown-link.no-active-links:hover {
        color: #777777 !important;
        padding-left: 18px !important;
        pointer-events: none !important;
        cursor: default !important;
    }
}

/* Desktop 1024px (1024px - 1079px) */
@media (min-width: 1024px) and (max-width: 1079px) {
    html {
        font-size: 16px;
        overflow-x: hidden;
        overflow-y: auto;
    }

    body {
        overflow-x: hidden;
        overflow-y: auto;
    }

    .main-header {
        padding: 0px 35px;
        overflow: visible;
    }

    .header-container {
        overflow: visible;
        max-width: 100%;
    }

    .logo {
        width: 190px;
        height: 114px;
    }

    .nav {
        display: flex;
        gap: 20px;
        min-width: 0;
        overflow: visible;
    }

    .nav-link-wrapper {
        overflow: visible;
    }

    .nav-link {
        font-size: 16px;
    }

    .dropdown-menu {
        max-width: calc(100vw - 70px);
        padding: 18px 25px;
        gap: 40px;
    }

    .dropdown-menu-exterior {
        gap: 25px;
    }

    .dropdown-row {
        gap: 40px;
    }

    .dropdown-column {
        max-width: calc((100vw - 200px) / 2);
        min-width: 180px;
    }

    .hamburger-menu {
        display: none;
    }

    .search-toggle-btn {
        display: none;
    }

    .search-container {
        display: block;
        position: absolute;
        top: 15px;
        left: 52%;
        transform: translateX(-50%);
        opacity: 1;
        visibility: visible;
        background-color: transparent;
        padding: 0;
        border-bottom: none;
    }

    .social-icons {
        gap: 19px;
    }

    .social-icon {
        font-size: 19px;
    }

    .product-container {
        flex-direction: row;
        gap: 40px;
    }

    .product-image-section {
        max-width: 45%;
    }

    .product-info-section {
        max-width: 50%;
    }

    .product-title {
        font-size: 30px;
    }

    .dropdown-list a.no-active-links {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .dropdown-list a.no-active-links:hover {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .mobile-dropdown-link.no-active-links {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .mobile-dropdown-link.no-active-links:hover {
        color: #777777 !important;
        padding-left: 20px !important;
        pointer-events: none !important;
        cursor: default !important;
    }
}

/* Desktop 1080px and above */
@media (min-width: 1080px) {
    .hamburger-menu {
        display: none;
    }

    .search-toggle-btn {
        display: none;
    }

    .search-container {
        display: block;
        position: absolute;
        top: 15px;
        left: 52%;
        transform: translateX(-50%);
        opacity: 1;
        visibility: visible;
        background-color: transparent;
        padding: 0;
        border-bottom: none;
    }

    .product-container {
        flex-direction: row;
        gap: 60px;
    }

    .product-image-section {
        max-width: 45%;
    }

    .product-info-section {
        max-width: 50%;
    }

    .dropdown-list a.no-active-links {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .dropdown-list a.no-active-links:hover {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .mobile-dropdown-link.no-active-links {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .mobile-dropdown-link.no-active-links:hover {
        color: #777777 !important;
        padding-left: 20px !important;
        pointer-events: none !important;
        cursor: default !important;
    }
}

/* Desktop 1400px and above - All three columns in one row */
@media (min-width: 1400px) {
    .dropdown-menu-exterior {
        flex-direction: row;
        gap: 60px;
    }
    
    .dropdown-menu-exterior .dropdown-row {
        display: flex;
        flex-direction: row;
        gap: 60px;
        flex-wrap: nowrap;
    }
    
    .dropdown-menu-exterior .dropdown-row .dropdown-column {
        flex: 0 0 auto;
    }

    .dropdown-list a.no-active-links {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .dropdown-list a.no-active-links:hover {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .mobile-dropdown-link.no-active-links {
        color: #777777 !important;
        pointer-events: none !important;
        cursor: default !important;
    }

    .mobile-dropdown-link.no-active-links:hover {
        color: #777777 !important;
        padding-left: 20px !important;
        pointer-events: none !important;
        cursor: default !important;
    }
}